home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / GNU / GNUPLOTsrc.lha / eval.c < prev    next >
C/C++ Source or Header  |  1996-01-22  |  4KB  |  147 lines

  1. #ifndef lint
  2. static char *RCSid = "$Id: eval.c,v 1.12 1994/04/05 17:30:47 alex Exp $";
  3. #endif
  4.  
  5.  
  6. /* GNUPLOT - eval.c */
  7. /*
  8.  * Copyright (C) 1986 - 1993   Thomas Williams, Colin Kelley
  9.  *
  10.  * Permission to use, copy, and distribute this software and its
  11.  * documentation for any purpose with or without fee is hereby granted, 
  12.  * provided that the above copyright notice appear in all copies and 
  13.  * that both that copyright notice and this permission notice appear 
  14.  * in supporting documentation.
  15.  *
  16.  * Permission to modify the software is granted, but not the right to
  17.  * distribute the modified code.  Modifications are to be distributed 
  18.  * as patches to released version.
  19.  *  
  20.  * This software is provided "as is" without express or implied warranty.
  21.  * 
  22.  *
  23.  * AUTHORS
  24.  * 
  25.  *   Original Software:
  26.  *     Thomas Williams,  Colin Kelley.
  27.  * 
  28.  *   Gnuplot 2.0 additions:
  29.  *       Russell Lang, Dave Kotz, John Campbell.
  30.  *
  31.  *   Gnuplot 3.0 additions:
  32.  *       Gershon Elber and many others.
  33.  * 
  34.  * There is a mailing list for gnuplot users. Note, however, that the
  35.  * newsgroup 
  36.  *    comp.graphics.gnuplot 
  37.  * is identical to the mailing list (they
  38.  * both carry the same set of messages). We prefer that you read the
  39.  * messages through that newsgroup, to subscribing to the mailing list.
  40.  * (If you can read that newsgroup, and are already on the mailing list,
  41.  * please send a message info-gnuplot-request@dartmouth.edu, asking to be
  42.  * removed from the mailing list.)
  43.  *
  44.  * The address for mailing to list members is
  45.  *       info-gnuplot@dartmouth.edu
  46.  * and for mailing administrative requests is 
  47.  *       info-gnuplot-request@dartmouth.edu
  48.  * The mailing list for bug reports is 
  49.  *       bug-gnuplot@dartmouth.edu
  50.  * The list of those interested in beta-test versions is
  51.  *       info-gnuplot-beta@dartmouth.edu
  52.  */
  53.  
  54. #include "plot.h"
  55.  
  56.  
  57. struct udvt_entry *
  58. add_udv(t_num)  /* find or add value and return pointer */
  59. int t_num;
  60. {
  61. register struct udvt_entry **udv_ptr = &first_udv;
  62.  
  63.     /* check if it's already in the table... */
  64.  
  65.     while (*udv_ptr) {
  66.         if (equals(t_num,(*udv_ptr)->udv_name))
  67.             return(*udv_ptr);
  68.         udv_ptr = &((*udv_ptr)->next_udv);
  69.     }
  70.  
  71.     *udv_ptr = (struct udvt_entry *)
  72.       alloc((unsigned long)sizeof(struct udvt_entry), "value");
  73.     (*udv_ptr)->next_udv = NULL;
  74.     copy_str((*udv_ptr)->udv_name,t_num, MAX_ID_LEN);
  75.     (*udv_ptr)->udv_value.type = INTGR;    /* not necessary, but safe! */
  76.     (*udv_ptr)->udv_undef = TRUE;
  77.     return(*udv_ptr);
  78. }
  79.  
  80.  
  81. struct udft_entry *
  82. add_udf(t_num)  /* find or add function and return pointer */
  83. int t_num; /* index to token[] */
  84. {
  85. register struct udft_entry **udf_ptr = &first_udf;
  86.  
  87.     int i;
  88.     while (*udf_ptr) {
  89.         if (equals(t_num,(*udf_ptr)->udf_name))
  90.             return(*udf_ptr);
  91.         udf_ptr = &((*udf_ptr)->next_udf);
  92.     }
  93.      *udf_ptr = (struct udft_entry *)
  94.       alloc((unsigned long)sizeof(struct udft_entry), "function");
  95.     (*udf_ptr)->next_udf = (struct udft_entry *) NULL;
  96.     (*udf_ptr)->definition = NULL;
  97.     (*udf_ptr)->at = NULL;
  98.     copy_str((*udf_ptr)->udf_name,t_num, MAX_ID_LEN);
  99.     for(i=0; i<MAX_NUM_VAR; i++)
  100.         (void) Ginteger(&((*udf_ptr)->dummy_values[i]), 0);
  101.     return(*udf_ptr);
  102. }
  103.  
  104.  
  105. int standard(t_num)  /* return standard function index or 0 */
  106. int t_num;
  107. {
  108. register int i;
  109.     for (i = (int)SF_START; ft[i].f_name != NULL; i++) {
  110.         if (equals(t_num,ft[i].f_name))
  111.             return(i);
  112.     }
  113.     return(0);
  114. }
  115.  
  116.  
  117.  
  118. void execute_at(at_ptr)
  119. struct at_type *at_ptr;
  120. {
  121. register int i,index,count,offset;
  122.  
  123.     count = at_ptr->a_count;
  124.     for (i = 0; i < count;) {
  125.         index = (int)at_ptr->actions[i].index;
  126.         offset = (*ft[index].func)(&(at_ptr->actions[i].arg));
  127.         if (is_jump(index))
  128.             i += offset;
  129.         else
  130.             i++;
  131.     }
  132. }
  133.  
  134. /*
  135.  
  136.  'ft' is a table containing C functions within this program. 
  137.  
  138.  An 'action_table' contains pointers to these functions and arguments to be
  139.  passed to them. 
  140.  
  141.  at_ptr is a pointer to the action table which must be executed (evaluated)
  142.  
  143.  so the iterated line exectues the function indexed by the at_ptr and 
  144.  passes the address of the argument which is pointed to by the arg_ptr 
  145.  
  146. */
  147.